home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Booting Gallery / Booting Gallery (source) / (Libraries) / Fluent Libraries / Utils / uhoh.h < prev   
Encoding:
C/C++ Source or Header  |  1996-06-22  |  158 b   |  14 lines  |  [TEXT/BROW]

  1. #ifndef __UHOH__
  2. #define __UHOH__
  3.  
  4. #ifndef NDEBUG
  5.     static void uhoh(StringPtr message)
  6.     {
  7.         DebugStr(message);
  8.     }
  9. #else
  10.     #define uhoh(message)
  11. #endif
  12.  
  13.  
  14. #endif